home *** CD-ROM | disk | FTP | other *** search
/ MACD 5 / MACD 5.bin / internet / irc_i_dodatki / eggdrop / eggdrop11.lha / tricks < prev    next >
Text File  |  1997-01-15  |  1KB  |  30 lines

  1. Some little tricks that you may or may not know about...
  2.  
  3. *  You can "lock" a user's info line by putting a '@' as the first letter.
  4.    They won't be able to change it any more.
  5.  
  6. *  '.status all' will dump out virtually everything you have configured on
  7.    your bot
  8.  
  9. *  TCL has a command 'info body <proc>' that will list the contents of a
  10.    proc.  'info args <proc>' shows what you have defined as the parameters
  11.    for the proc.
  12.  
  13. *  You can rename a builtin command by binding over it.  To rename '.status'
  14.    to '.report', you'd do:
  15.      unbind dcc - status *status
  16.      bind dcc m report *status
  17.    The first line removes the builtin binding on '.status', and the second
  18.    line binds '.report' to the builtin status function.
  19.  
  20. *  You can unlink all bots and clear out the botnet info from memory by
  21.    using '.unlink *'.  It erases all channel assoc's and everything.
  22.  
  23. *  '.fries' is a real command.
  24.  
  25. *  You can make a selective auto-op flag (called +i) with the script:
  26.    set flag1 i
  27.    bind join i * join_auto_op
  28.    proc join_auto_op {n uh h c} { putserv "MODE $c +o $n" }
  29.  
  30.